ci(frontend-ui-audit): blobless partial clone of ui-registry#2534
Merged
Conversation
The audit needs all v* tags to resolve component versions, so it clones ui-registry with fetch-depth: 0. Add filter: blob:none so it's a blobless partial clone — commit and tag metadata is fetched but file blobs are pulled lazily only when `git show` needs them, keeping CI fast.
Contributor
✅ Clean — no registry drift, off-token colours, or ad-hoc classesApp:
Generated by lookout audit-changes. |
malinskibeniamin
approved these changes
Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add
filter: blob:noneto the Checkout ui-registry step infrontend-ui-audit.yml.Why
The audit resolves component versions via
git show v<tag>:<path>, so it clones ui-registry withfetch-depth: 0to get allv*tags. A blobless partial clone (filter: blob:none) still fetches all commit and tag metadata — so versions resolve — but defers file-blob downloads untilgit showactually needs them, keeping the checkout fast.Mirrors the same change in cloudv2's
registry-drift.yml(redpanda-data/cloudv2#27428).Test plan
frontend/src, confirm the drift comment still shows real component versions (not?).